#!/bin/bash

echo "Please Enter Album Link:"
read album

wget -q "$album/?start=all" -O-| \
grep "action=view"|grep "^<a href"|cut -d\" -f2| \
sed 's/?action=view\&current=//g'|while read line
do 
    wget -c "$line"
done